@import url('https://fonts.googleapis.com/css2?family=Smooch&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");





@font-face {
    font-family: 'breathing';
    src: url('./fonts/breathing.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Royalty';
    src: url('./fonts/Royalty.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fabulous';
    src: url('./fonts/fabulous.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SUIT';
    font-weight: 100;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Thin.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 200;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-ExtraLight.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 300;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 400;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 500;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 600;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 800;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'SUIT';
    font-weight: 900;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@latest/fonts/static/woff2/SUIT-Heavy.woff2') format('woff2');
}

@font-face {
    font-family: 'InkLiquid';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}


<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap"rel="stylesheet" > @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fade-in {
    animation: fadeIn 1s ease-out both;
}





div {
    display: block;
    unicode-bidi: isolate;
}


#app,
html {
    font-size: calc(var(--font-size)* 430 / 390);
    text-align: center;
    background: #000;
    font-family: 'SUIT';
    touch-action: pan-x pan-y;
    overflow-x: hidden;
}

br {
    font-family: initial;
}


.mcard_view {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: auto;
    color: #544f4f;
    background: #000;
    /* 기본 배경 검정 */
    line-height: 2rem;
}


.video-no-scroll {
    overflow: hidden;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
}


.mcard_intro,
.image-wrap {
    position: relative;
    width: 100%;
    height: 100svh;
    background-color: #000;
    overflow: hidden;
}


.image-wrap video,
.image-wrap #final-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 100%;
    /* 화면보다 커지지 않게 */
    max-height: 100%;
    /* 화면보다 커지지 않게 */

    width: auto;
    /* 원본 비율 유지 */
    height: auto;
    /* 원본 비율 유지 */

    object-fit: contain;
    /* 화면 안에 맞추면서 비율 유지, 남는 공간은 배경색 */
}

.img-wrap {      
 /* 남는 공간 채울 배경 이미지 */
    background: url('./img/bg-texture.jpg') center center / cover no-repeat;
}


/* 초기 상태 
#loading-video {
    opacity: 1;
}
#final-img {
    opacity: 0;
} */

#loading-video {
    opacity: 1;
    z-index: 10000;
    width: 100%;
    height: auto;
    display: block;
}

#final-img {
    z-index: 9999;
}

#audio-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 30000; /* final-img 위 */
    pointer-events: auto;
}

#audio-btn.visible {
    opacity: 1;
}

.bottom_info .name .groom {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    color: ;
    font-size: 1.3rem;
    font-family: 'SUIT';
    font-weight: 600;
    letter-spacing: 0.7rem;
}

.bottom_info .name .and {
    width: 1px;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    align-self: center;
}

.bottom_info .name .bride {
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    color: ;
    font-size: 1.3rem;
    font-family: 'SUIT';
    font-weight: 600;
    letter-spacing: 0.7rem;
}

.bottom_info .date_place .info {
    margin-top: 1rem;
    line-height: 2rem;
    text-align: center;
    color: ;
    font-size: 1.1rem;
    font-family: 'SUIT';
    font-weight: 400;
    letter-spacing: 0.1rem;
}


.invitation-wrap {
    padding: 6.4rem 1.8rem 5rem 1.8rem;
    background-color: #fff;
}


.m-title {
    padding: 30px auto 25px auto;
    width: 160px;
    height: 50px;
    border-radius: 80px / 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px auto 25px auto;
    font-weight: bold;
    font-size: 0.8rem;
    color: #635B52;
    letter-spacing: 2px;
    font-family: 'SUIT';
    border: 1px solid #888;

}

.invi_title {
    margin: 10px auto 25px auto;
    width: 160px;
    height: 50px;
    border-radius: 80px / 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: #635B52;
    letter-spacing: 2px;
    font-family: 'SUIT';
    border: 1px solid #888;
}

.invi_title_save {
    margin: 10px auto 25px auto;
    width: 160px;
    height: 50px;
    border-radius: 80px / 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-family: 'SUIT';
    border: 1px solid #dd6071;
}



.parents-wrap {
    padding: 1.5rem 0;
    font-family: 'SUIT';
}

.parents-wrap .bride,
.parents-wrap .groom {
    vertical-align: middle;
    white-space: nowrap;
}

.parents-wrap .groom {
    margin-bottom: 30px;
}

.parents-wrap .bride > span,
.parents-wrap .groom > span {
    display: inline-block;
    vertical-align: middle;
}

.bride-bold {
    font-weight: 800;
}

.parents-wrap .bride-p {
    font-size: 1.2rem;
    color: #28303F;
    letter-spacing: 1px;
    font-family: 'SUIT';
    font-weight: 600;
}

.parents-wrap .bride > span[bride] {
    font-size: 1.3rem;
    font-family: 'SUIT';
    margin-left: 4px;
    font-weight: 600;
}

.groom-bold {
    font-weight: 800;
}

.parents-wrap .groom-p {
    font-size: 1.2rem;
    color: #28303F;
    letter-spacing: 1px;
    font-family: 'SUIT';
    font-weight: 600;
}

.parents-wrap .groom > span[groom] {
    font-size: 1.3rem;
    font-family: 'SUIT';
    margin-left: 4px;
    font-weight: 600;
}


.parents-wrap .relation {
    font-size: 1rem;
    color: #28303F;
    font-family: "SUIT";
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease forwards;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'SUIT', sans-serif;
}

.btn-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    margin: 4px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content01 {
    position: absolute;
    top: 50%;
    left: 50%;
    
    /* 정렬 및 자연스러운 애니메이션들 */
    transform: translate(-50%, -50%) scale(1);
    
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    min-width: 450px;
    /* 최소 너비도 고정 */

    
    animation: slideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1); /* 천천히 시작 → 빠르게 내려옴 → 살짝 멈춤 */
    
    
    text-align: center;
    /* 추가: 제목 가운데 정렬을 위해 */
    font-family: 'SUIT', sans-serif;

    height: 85%;
    /* 높이는 내용에 따라 늘어나고 */

    min-height: 34rem;


    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

    transition:
        max-height 1.0s ease-in-out,
        min-height 1.0s ease-in-out,
        padding 1.0s ease-in-out;
    
    flex-direction: column;
    display: flex;
    
    overflow: hidden;
}


/* ✅ 스크롤은 이 영역에만 적용 */
.modal-body {
    flex: 1;               /* 남는 공간 다 차지 */
    overflow-y: auto;      /* 이 부분만 스크롤 */
    padding-right: 8px;
    max-height: 100%;
}



@media screen and (max-width: 500px) {
    .modal-content01 {
        width: 90%;
        min-width: auto;
        /* 최소 너비 해제 */
    }
}


.modal-title01 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
    font-weight: 400;
    padding: 2rem 0 0 1rem;
}

.modal-title01 .small {
    font-size: 1rem;
    color: #C47676;
    margin-top: 10px;
    line-height: 1.2rem;
}

.tab-wrap {
    margin-bottom: 1rem;
    /* 상단 탭 부분은 내용 크기만큼 차지 */

    flex: 0 0 auto;
}

.tabs {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.tabs span {
    flex: 1;
    text-align: center;
    padding: .2rem 0;
    cursor: pointer;
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.tabs .active {
    color: #000;
    border-bottom: 2px solid #000;
    font-weight: bold;
}

.contact-groom,
.contact-bride {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.contact-groom.active,
.contact-bride.active {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    /* 충분한 최대 높이로 설정 */
    transition: opacity 0.6s ease, max-height 0.6s ease;
}

.contact-card {
    background-color: white;
    padding: .9rem 1rem;
    margin-bottom: .6rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-groom.active .contact-card,
.contact-bride.active .contact-card {
    opacity: 1;
    transform: translateY(0);
}

/* 옵션: 카드들 순서대로 약간씩 딜레이 주기 */
.contact-groom.active .contact-card:nth-child(1),
.contact-bride.active .contact-card:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-groom.active .contact-card:nth-child(2),
.contact-bride.active .contact-card:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-groom.active .contact-card:nth-child(3),
.contact-bride.active .contact-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* 카드가 더 많으면 nth-child(4), (5) 등 추가 */

.name-role {
    display: flex;
    justify-content: space-between;
    margin-bottom: .2rem;
    font-weight: 600;
}

.relation {
    color: #777;
    font-size: 0.85rem;
}

.btn-group {
    display: flex;
    gap: ;
}

.call-btn,
.sms-btn {
    height: 42px;
    display: flex;
    align-items: center;
    /* 아이콘 + 텍스트 수직 중앙 정렬 */
    justify-content: center;
    /* 수평 중앙 정렬 */
    gap: 0.4rem;
    /* 아이콘과 텍스트 간격 */
    color: white;
    border: none;
    padding: 10px;
    flex: 1;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sms-btn {
    background-color: #edaeae;
}

.call-btn {
    background-color: #4a4a4a;
}

.btn-group i {
    font-size: .8rem;
}



.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* 아이콘과 텍스트 사이 간격 */
    margin: 30px auto;
    color: #FFF;
    background-color: #e9717f;
    border-radius: .6rem;
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: 1px;
    height: 3.2rem;
    transition: opacity 1.2s ease;
    font-family: 'SUIT';
    width: 100%;
    /* ✅ 화면 꽉 채우기 */
    max-width: 400px;
    /* ✅ 최대 너비 제한 (원하는 값으로) */
    padding-right: 4px;
}

.contact-wrap i {
    color: #FFF;
    font-size: 0.9rem;
}


.contact-button:hover {
    background-color: #000;
    /* 원하는 hover 배경색 */
    color: #fff;
    /* hover 시 글자색 */
}

.contact-button:hover i {
    background-color: #000;
    /* 원하는 hover 배경색 */
    color: #fff;
    /* hover 시 글자색 */
}


@keyframes slideUp {
    from {
        transform: translate(-50%. -70%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
}


.contact-group {
    margin-top: 25px;
    margin-bottom: 10px;
}

/*.contact-group .division {
    border-bottom: 1px dashed rgba(2, 2, 2, 0.1);
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    padding: 0 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    vertical-align: middle;
} */


.contact-row {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-family: 'SUIT';
    margin-bottom: 5px;
}

.contact-row span {
    flex: 4;
}

.contact-row {
    flex: 4;
    color: rgba(25, 24, 29, 0.8);
}

.contact-row .icons {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 13px;
    padding: 0 20px;
}


.button-icon {}


.save_the_date-wrap {
    padding: 5rem 1.8rem;
    background-color: #fff;

}

.save_the_date-wrap .save_bold {
    font-family: 'SUIT';
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .6rem;

}

.save_the_date-wrap .save {
    font-family: 'SUIT';
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.8rem;
}

.save_img {
    width: 100%;
    /* 항상 가로 180px */
    height: auto;
    /* 세로는 자동 비율 유지 */
    display: block;
    margin: 40px auto;
    /* 가운데 정렬 (선택 사항) */

}


.invitation-wrap .text {
    display: inline-block;
    margin: 20px 10px 30px 10px;
    font-size: 1.1rem;
    font-family: 'SUIT';
    color: #111111;
}

.invitation-wrap .text span {
    font-family: 'SUIT';
    color: #28303F;
    font-weight: 700;
}


.introduce-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 5rem 1.8rem 9rem 1.8rem;
    font-family: 'SUIT';
    overflow: hidden;
    background-image: url(./img/BACK.jpg);
    background-size: cover;
    background-position: center;
}

.line-bg {
    position: absolute;
    top: 24rem;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-out;
    z-index: 0;
    pointer-events: none;
}


.line-bg.active {
    opacity: 0.6;
}

/* img fade-in*/

.fade-in-img {
    opacity: 0;
    transition: opcity 1s ease-out;
}

.fade-in-img.active {
    opacity: 1;
}


.couple-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 3rem;
    z-index: 1;
    position: relative;

}

.couple-card {
    text-align: center;
    margin-bottom: .6rem;
}

.couple-section .bride {
    text-align: left;
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 50px;
    color: #dd6071;
}

.couple-section .groom {
    text-align: right;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 50px;
    color: #dd6071;
}

.left-img {
    width: 200%;
    height: auto;
}

.right-img {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: 100%;
    height: auto;
}

.couple-card img {
    width: 80%;
    height: auto;
    display: block;
}

.introduce {
    color: #000;
    font-weight: 400;
    line-height: 1.5rem;
}

.introduce span {
    font-weight: 600;
    font-size: 1.2rem;
}

.introduce-wrap .hyeji {
    text-align: left;
    margin-left: 40px;
    line-height: 1.6rem;
    margin-top: px;

}

.couple-card .hyeji .name,
.couple-card .jinwon .name {
    margin-top: 10px;

    line-height: 1.8rem;
    font-family: 'InkLiquid';
    font-size: 1.25rem;
    color: #333333;
    padding-left: 6px;
    padding-right: 6px;
}

.introduce-wrap .jinwon {
    text-align: right;
    margin-right: 40px;
    line-height: 1.6rem;
    margin-top: 12px;
}

.couple-section .met-wrap .img {
    width: 100%;
    height: auto;
    display: block;
}

.met-wrap {
    text-align: center;
}

.met-wrap .text {
    margin-top: 4rem;
    font-family: 'breathing';
    font-size: 2.6rem;
    transform: rotate(-4deg);
    white-space: nowrap;
    color: #dd6071;
    padding-right: 10px;
}

.tie-text {
    font-family: 'SUIT';
    font-size: 1rem;
    color: #555555;
    margin: 2rem 0 5rem 0;
}

.tie-text span {
    font-family: 'InkLiquid';
    color: #dd6071;
    font-size: 1.4rem;
    margin: 0 0px 0 4px;
}

.calendar-wrap {
    padding: 5rem 1.8rem;
    background-color: #282828;
}

.calendar-wrap .date_kr {
    font-size: 1.2rem;
    color: #fff;
    opacity: 1;
    font-family: "SUIT";
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.calendar-wrap .date_en {
    font-size: 1.2rem;
    color: #FFF;
    opacity: .5;
    font-family: "SUIT";
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.dateline {
    width: 1px;
    height: .7rem;
    background-color: #28303F;
    display: inline-block;
    vertical-align: middle;
}



.c-calendar {
    margin: 20px 40px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-family: 'SUIT';
    font-weight: 400;

}

.c-calendar-table {
    width: 100%;
    font-size: 1rem;
    line-height: 2.4rem;
    text-align: center;
    margin: 20px 0;
    color: #FFF;
}

.c-calendar-table td {
    vertical-align: middle;
    height: 35px;
    /* 셀 높이 명시적으로 지정 */
}

.c-calendar-table th,
.c-calendar-table td {
    width: 14.28%;
    /* 100% / 7 columns */
}

.c-calendar-table > thead tr th:first-child,
.c-calendar-table > tbody tr td:first-child {
    color: #c6472b;
}

.c-calendar-table > thead tr th {
    font-weight: 500;
    /* 원하는 두께 */
    color: #FFF;
    /* 원하는 색상 */
}

.c-calendar-table > tbody tr td {
    font-weight: 400;
    /* 원하는 두께 */
    color: #FFF;
    /* 원하는 색상 */
}

/* 웨딩 하트 */
.c-calendar-wedding_day {
    background-color: transparent;
    display: flex;
    justify-content: center;
    justify-content: center;
    align-items: center;
    height: 0px;
}

.c-calendar-wedding_day .heart {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: #ea6376;
    border-radius: 3px;
    margin-top: 4px
}

.c-calendar-wedding_day .heart:before,
.c-calendar-wedding_day .heart:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ea6376;
    border-radius: 50%;
}

.c-calendar-wedding_day .heart:before {
    left: -50%;
    top: 0%;
}

.c-calendar-wedding_day .heart:after {
    right: 0%;
    top: -50%;
}

.d-day {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-55%, -54%) rotate(-45deg);
    /* ← 중심 정렬 후 회전 */
    color: white;
    font-size: .9rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 1;
}

/* ✅ Countdown Timer */
.countdown {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #FFF;
    margin-top: 20px;
}

.timer-inline {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 레이블 기준으로 숫자와 맞춤 */
    gap: 8px;
    margin-bottom: 20px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
}

.label {
    font-size: 10px;
    color: #FFF;
    letter-spacing: 1px;
    font-family: 'SUIT';
}

.value {
    font-size: 1.2rem;
    color: #FFF;
    font-family: 'SUIT';
}

.colon {
    font-size: 1.2rem;
    color: #FFF;
    line-height: 1.;
    padding: 0 4px;
    font-family: 'SUIT';
}

.message {
    font-size: 1rem;
    color: #fff;
    font-family: 'SUIT';
    letter-spacing: 1.1px;
}

.message .heart {
    color: #ea6376;
}

#daysLeft {
    color: #ea6376;
    font-weight: bold;
}

.gallery-wrap {
    padding: 5rem 0;
    background-color: #fff;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 1.8rem;
    margin-bottom: 20px;
}

.grid-item img {
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
    border-radius: rem
}

.grid-item {
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.grid-item.show {
    opacity: 1;
    transform: translateY(0);
}



.hidden {
    display: none;
}

/*.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    border: 1px solid #E2E2E2;
    padding: 10px 20px;
    border-radius: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #28303F;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
} */



.show-more-btn {
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #28303F;
    gap: 8px;
    margin: 0 auto;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-overlay.active {
    display: flex;
}

.up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.4rem;
    box-sizing: border-box;
    z-index: 1000;
}

.image-counter {
    color: white;
    font-size: .8rem;
    flex-shrink: 0;
}

.modal-content {
    position: relative;
    max-width: 98%;
    max-height: calc(auto -1rem);
    margin: 2rem auto 0 auto;

}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: .3rem;
    display: block;
    margin: 0 auto;
}

.close-btn,
.nav-btn {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    right: 20px;
    font-weight: 300;
}

.nav-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;

    /* 이미지 중앙 정렬 */
    display: flex;
    align-items: center;
    justify-content: center;
}


.prev-btn {
    left: .4rem;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: .4rem;
    top: 50%;
    transform: translateY(-50%);
}

.btn-icon {
    width: 20px;
    height: auto;
    display: block;
    color: #fff;
}

.modal-open {
    overflow: hidden;
    height: 100%;
}


/* ───────── 기본 래퍼 ───────── */
.date-wrap {
    position: relative;
    /* 자식 img를 절대 위치시킬 공간 */
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ← 이미지가 scale 될 때 삐져나오지 않게 */
    transition: background-color .4s ease;
}

.date-wrap.active {
    background: #000;
}



/* ───────── 날짜 텍스트 ───────── */
.date-wrap .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.date-wrap .line {
    font-size: 2.4rem;
    color: #dd6071;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .3s ease, transform .3s ease;
}

.date-wrap.active .line.first {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.date-wrap.active .line.second {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s;
}

/* ───────── 배경 이미지 ───────── */
.date-wrap .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}


/* ✅ 핑크 오버레이 추가 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* ← 투명도 조절 가능 */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    /* 텍스트 뒤, 이미지 위 */
}

.date-wrap.active .bg-img {
    opacity: 1;
    transform: scale(1);
}

.date-wrap.active .overlay {
    opacity: 1;
}


.map-wrap {
    padding: 5rem 1.8rem;
    background-color: #FFF;
}

.location-wrap {
    margin: 18px 0 26px;
}

.location-hall {
    color: #3D3C3A;
    font-family: 'SUIT';
    font-size: 1.1rem;
    font-weight: bold;
    padding-bottom: 2px;
}

.location-address {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: #797979;
    font-family: 'SUIT';
    cursor: pointer;
    gap: .4rem;
}

.location-address i {
    font-size: 0.9rem;
    vertical-align: middle;
    line-height: 1;
    /* 정확한 세로 정렬을 위해 추가 */
}

.map-inner {
    margin: 18px 0 26px;
}

#app #map {
    height: 15rem;
}

#map {
    margin: auto;
    width: 100%;
}

#app .map-navi {
    background-color: #F7DEDE;
    padding: 8px 10px;
}


.map-navi img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
    border-radius: 4px;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

img {
    -webkit-touch-callout: none;
}

.waytocome-wrap {
    text-align: left;
}

.waytocome-wrap .box {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #e9e5e5;
}

.waytocome-wrap .box:last-child {
    border-bottom: none;
}



.icon-back {
    padding-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.icon-back i {
    font-size: 1rem;
    color: #555555;
}

.wayhow {
    flex: 1;
}

.wayhow .row {
    line-height: 1.7rem;
    padding: 8px 2px;

}

.wayhow .title {
    height: 40px;
    font-size: 1.1rem;
    color: #555555;
    font-weight: bold;
    margin-bottom: 1px;
    font-family: 'SUIT';
}

.wayhow .content {
    font-size: 1rem;
    line-height: 2rem;
    font-family: 'SUIT';
    padding: 0 10px;
}


.wh_bold {
    font-weight: 800;
    font-size: 1rem;
}

.bus-type-plain {
    color: #000;
    font-weight: 600;
    font-size: 1rem;
}

.bus-type-ji {
    color: #5ab431;
    font-weight: 600;
    font-size: 1.rem;
}

.bus-type-gan {
    color: #2972ba;
    font-weight: 600;
    font-size: 1rem;
}

.bus-type-gon {
    color: #636363;
    font-weight: 600;
    font-size: 1rem;
}

.bus-type-jik {
    color: #d83916;
    font-weight: 600;
    font-size: 1rem;
}


.event-wrap {
    background-color: #fff;
    text-align: center;

    background-image: url('./img/paper.jpg');
    /* 배경 이미지 경로 */
    background-size: cover;
    /* 화면 꽉 차게 */
    background-position: center;
    /* 중앙 정렬 */
    background-repeat: no-repeat;
    /* 반복 안 함 */
    padding: 3rem 0 5rem 0;
    /* 안쪽 여백 (글씨가 붙지 않게) */
}

.invi_title_event {
    margin: 5rem auto 25px auto;
    width: 160px;
    height: 50px;
    border-radius: 80px / 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-family: 'SUIT';
    border: 1px solid #dd6071;
}



.paper-wrap {
    position: relative;
    display: inline-block;
}


.paper-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.65rem;
    font-weight: 400;
    text-align: center;
    pointer-events: none;
    padding-top: 2rem;
}

.paper-text span {
    font-weight: 700;
    color: #dd6071;
}

.event-card-wrap {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}


.bg-img {
    width: 120%;
    /* 원본 비율 그대로, 화면에 맞춰 확대/축소 */
    height: auto;
    /* 비율 유지 */

}

.info-wrap {
    position: absolute;
    /* 배경 위에 덮어쓰기 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 세로 중앙 배치 */

}


.event-card-wrap .card {
    width: 50%;
    height: auto;
    margin: 0 0 .5rem 0;
    z-index: 1
}


.card-info {
    color: #19181d;
    font-size: .96rem;
    line-height: 1.65rem;
    margin-top: 1rem;
}


.card-info .tip {
    background-color: #dd6071;
    color: #fff;
    padding: 0 .4rem;
    display: inline-block;
    margin: 0.2rem 0;
}

.chui {
    font-size: 1.18rem;
    font-family: 'InkLiquid';
    background-color: #282828;
    padding: 0 .8rem;
    border-radius: 1rem;
    z-index: 2;
}



/*
.rsvp-wrap {
    padding: 5rem 1.8rem;
    font-family: 'SUIT';
    background-color: #FFF;
    text-align: center;
}

.rsvp-wrap .card {
    position: relative;
    padding: 35px 0px 25px 0;
    border: 1px solid rgba(40, 48, 63, 0.3);
    border-radius: 10px;
}

.rsvp-wrap .title {
    color: #89757a;
    position: absolute;
    top: -1rem;
    width: 100%;
}

.rsvp-wrap .title .inner {
    display: inline-block;
    color: #fff;
    background: #28303F;
    border-radius: 32px;
    font-size: 1rem;
    margin: 0 auto;
    padding: 0 24px;
}

.rsvp-wrap .text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding-top: 30px;
}


.rsvp-main-wrap {
    background-color: #FBF5F5;
    padding: 50px 0;
    border-radius: 10px;
    margin-top: 2rem;
}

.rsvp-wrap .bg-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    font-size: 0.9rem;
    margin-bottom: 8px;
}


.rsvp-wrap .bg-info span {
    font-weight: 700;
    margin-left: 2px;
}

.rsvp-wrap .bg-info i {
    font-size: 0.8rem;
    color: #ff9191;
}

rsvp-invi {
    margin-bottom: 20px;
}

.rsvp-invi .date {
    font-family: 'SF_HambakSnow';
    font-size: 30px;
    letter-spacing: 4px;
    color: #C47676;
}

.rsvp-invi .info {
    padding: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.rsvp-wrap .m-button {
    display: inline-flex;/
    align-items: center;
    text-decoration: none;
    height: 2rem;
    line-height: 1.8rem;
    background-color: #EBADAD;
    color: #FFF;
    padding: 0 20px;
    border-radius: 32px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    gap: 8px;
}

.rsvp-wrap .m-button:hover {
    background-color: #D49898;
    color: #fff;
}

rsvp-wrap .m-button i {
    font-size: 0.8rem;
    vertical-align: middle;
    line-height: 1;
}
*/

/* 모달 */

/*
.rsvp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'SUIT', sans-serif;
}

.rsvp-hidden {
    display: none;
}

.rsvp-modal-content {
    background-color: rgba(255, 255, 255, 0.9);
    margin: 10% auto;
    padding: 1.2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    min-width: 450px;
    animation: slideUp 0.3s ease;
    position: relative;
    text-align: center;
    font-family: 'SUIT', sans-serif;

}

#closeRsvpModalBtn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
}


.rsvp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.field-row {
    margin: 15px 0;
    text-align: left;
}

.rsvp-modal .modal-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.modal-desc {
    color: #D49898;
    font-size: .85rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.1rem;
    font-family: 'SUIT', sans-serif;
}

.rsvp-a {
    font-size: .7rem;
    color: #EBADAD;
    vertical-align: super;
    margin-left: 2px;
}

.field-label {
    font-size: .9rem;
    margin-bottom: 8px;
    display: block;
    color: #333;
    font-family: 'SUIT', sans-serif;
}

.field-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid #F2F2F2;
    border-radius: .5rem;
    font-size: .9rem;
    color: #333;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    font-family: 'SUIT', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

input[type="text"]::placeholder {
    color: #A2A2A2;
    font-size: .9rem;
    font-family: "SUIT", sans-serif;
}

input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(233, 123, 132, 0.6);
}

.btn-toggle {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    flex: 1;
    padding: .8rem 0;
    background-color: #FFF;
    border: none;
    border-radius: 10px;
    font-size: .9rem;
    cursor: pointer;
    color: #555;
    font-family: 'SUIT', sans-serif;
}

.toggle-btn.active {
    background-color: #eebfc2;
    color: white;
}


.btn-side.active,
#mealToggle button.selected {
    background-color: #F9F9F9;
    color: 28303F;
}

.btn-side.active,
.toggle-btn.active {
    background-color: #EBADAD;
    color: white;
}

.submit-btn {
    width: 100%;
    background-color: #EBADAD;
    border: none;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
    font-family: 'SUIT', sans-serif;
}

.submit-btn:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

#mealToggle button {
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background: #f0f0f0;
    cursor: pointer;
}

#mealToggle button.selected {
    border: 1px solid #28303F !important;
    color: #28303F;
    font-weight: bold;
}

#submitBtn:disabled {
    background: gray;
    cursor: not-allowed;
} */

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.li-a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.chick {
    display: inline-flex;
    border: 1px solid #A2A2A2;
    width: 4rem;
}

.account-wrap {
    margin: 0px auto;
    padding: 5rem 2rem;
    background-color: #FAFAFA;
}

.account-wrap-r {
    margin: 3rem 0;
}

.account_number_li {
    margin-bottom: .5rem;
}


.account-wrap .s-subtitle {
    font-family: 'SUIT';
    font-size: 1rem;
    line-height: 25px;
    margin-top: 3rem;
}

.s-subtitle-con {
    color: #95979D;
}

.s-subtitle-title {
    font-family: 'SUIT';
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem
}

.account_number_li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 1rem;
    background-color: #e4808d;
    border-radius: .8rem;
    cursor: pointer;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-family: 'SUIT';
    color: #FFF;
    transition: transform 0.5s ease;
    font-weight: 300;
}

.title-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.account_number_li .arrow {
    transition: transform 0.3s ease;
    position: relative;
    top: 2px;
    margin-left: 10px;
    vertical-align: middle;
    transform: rotate(0);
    transform-origin: center center;
}

.account_number_li.open .arrow {
    transform: rotate(180deg);

}

.account_number_li.open .title {
    border-radius: .8rem .8rem 0 0;
}

.account_number_li svg {
    width: .75rem;
    height: .75rem;
    margin-top: -6px;
}

.account-number {
    text-decoration: none;
    /* 밑줄 제거 */
    -webkit-text-decoration: none;
    /* iOS Safari */
    color: inherit;
    /* 글자색 링크색(파랑) 방지 */
}

.number-wrap {
    display: none;
    padding: 25px 15px 10px 15px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    margin-top: -20px;
}

.number-wrap .account-item {
    position: relative;
    overflow: hidden;
    transition: .5s ease-out;
    font-size: 1rem;
    margin: 15px 5px;
    font-family: 'SUIT';
}

.account_number_li.open .number-wrap {
    display: block;
}

.number-wrap .inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-item {
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.account-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: .8rem 1.2rem;
    margin-top: .7rem;
    border-radius: 8px;
}

.account-info {
    float: left;
}

.a-bold {
    font-weight: 500;
}

.account-item .relation {

    color: #777;
    font-size: .9rem;
}

.account-holder {
    display: flex;
    float: left;
}

.account-role {
    display: flex;
    justify-content: space-between;
}

.btn-action {
    cursor: pointer;
    right: .75rem;
    padding: 0px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 0.8rem;
    user-select: none;
    float: right;
    cursor: pointer;
    line-height: 24px;
    color: #857A6D;
}

hr {
    border: none;
    border-top: 1px solid #e1e1e1;
    margin: 0;
}

/*복사 알림*/
.copy-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
    /* ← 한 줄로 고정 */
    overflow: hidden;
    /* ← 넘치면 숨김 */
    text-overflow: ellipsis;
    /* ← 넘치는 글자는 … 으로 표시 */
}

.copy-toast.show {
    opacity: 1;
}

.guestbook-wrap {
    padding-top: 40px 30px;
    margin-bottom: 40px;
}

.greetings-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #a08888;
}

.guestbook-wrap {
    padding-top: 40px;
    margin-bottom: 40px;
}

.c-guestbook {
    margin: 0;
    font-size: .86rem;
}

.c-guestbook .comments {
    padding: 0 var(--common-margin-lr);
    border: var(--border-size) solid var(--border-color);
    border-left: 0;
    border-right: 0;
}


.c-guestbook .item {
    position: relative;
    padding: .75rem 1rem;
    text-align: left;
    line-height: 1.5rem;
    background: hsla(0, 0%, 100%, .75);
    border-radius: 8px;
    margin-bottom: 6px;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 5%);
}

.c-guestbook .item .close {
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    line-height: 0;
    text-align: center;
    cursor: pointer;
}

.c-guestbook .item .date {
    margin-right: 2px;
    color: #aaa;
    font-size: .625rem;
    vertical-align: middle;
}

.c-guestbook .item .close > .icon > svg {
    width: .5rem;
    height: .5rem;
    vertical-align: middle;
    fill: #aaa;
}

.c-guestbook .tools {
    padding: 10px var(--common-margin-lr);
}

.c-guestbook .pagination-wrap {
    width: calc(100% - 6rem);
    display: inline-block;
}

.pagination {
    display: block;
    padding: 8px 0;
    text-align: center;
}

.c-guestbook .pagination {
    text-align: left;
}

.pagination-number {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    margin: 0 3px;
    text-align: center;
    cursor: pointer;
    font-size: .85rem;
    z-index: 99;
}

.pagination-active {
    opacity: 1;
    font-weight: 700;
    z-index: 94;
}

.pagination-number {
    opacity: .35;
    color: var(--title-text-color);
}

.c-guestbook .tools > .writing {
    display: inline-block;
    width: 5.5rem;
    padding: 8px 0;
}

.c-guestbook .m-button {
    display: inline-flex;
    /* 아이콘과 텍스트 수평 정렬 + 중앙 정렬 */
    align-items: center;
    /* 세로 중앙 정렬 */
    text-decoration: none;
    height: 2rem;
    line-height: 1.8rem;
    background-color: #F4F3F1;
    color: #28303F;
    padding: 0 20px;
    border: 1px solid #E8E7E5;
    border-radius: 32px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    gap: 8px;
    /* 아이콘과 텍스트 간격 */
}

.c-guestbook .tools > .writing > button {
    display: block;
    width: 100%;
    padding: 0;
    line-height: 0;
}

.m-button.dark {
    border: 1px solid #d0b9b9;
    background: #d0b9b9;
    color: #fff;
}


.visit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.visit-modal.hidden {
    display: none;
}

.visit-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
}

.visit-modal-content input,
.visit-modal-content textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.visit-close {
    float: right;
    cursor: pointer;
    font-size: 1.2rem;
    border: none;
    background: none;
}

.remind-wrap {
    padding: 8rem 1.8rem 5rem 1.8rem;
    background-color: #282828
}

.remind-wrap .text {
    font-family: 'Royalty';
    font-size: 2.4rem;
    transform: rotate(-2deg) translateX(-1.2%);
    color: #dd6071;
    white-space: nowrap;
    /* ← 한 줄로 고정 */
    padding-bottom: 0.8rem;
}

.remind-wrap .text-last {
    margin-top: 1rem;
    font-family: 'SUIT';
    font-size: .85rem;
    color: #fff;
    line-height: 1.5rem;
}

.text-last span {
    color: #dd6071;
}

.remind-wrap .img {
    transform: rotate(-2deg);
    width: 100%;
    padding: 1rem 3rem;
}

.btn-wrap {
    display: flex;
    flex-direction: column;
    /* 세로 배치 */
    gap: 12px;
    /* 버튼 사이 간격 */
    align-items: center;
    margin: 3.2rem 0
}


/* 공통 버튼 스타일 */
.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    width: 90%;
    padding: 1rem 1.4rem;
    color: #19181d;
    font-family: 'SUIT';
    font-weight: 600;

    border: #dfdfdf solid 1px;
    border-radius: .8rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    color: #dd6071;
}

.copyright {
    background-color: #282828;
    color: #FFF;
    font-family: 'SUIT';
    font-weight: 500;
    font-size: .6rem;
    padding: 1rem 0;
    line-height: 1rem;
}
