
/* s: header */
header {
    position: relative;
	max-width: 28rem;
    width: 100%;
}
.bgm_btn {
    z-index: 9999;
    position: absolute;
    top: 1.25rem; /* 20px */
    right: 1.25rem; /* 20px */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    cursor: pointer;
}
/* EQ 애니메이션 */
.eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 10px;
}
.eq-bars span {
    width: 2px;
    background: #ffffff;
    border-radius: 3px;
    transform-origin: bottom;
    animation: eq 1.1s infinite ease-in-out;
}
.eq-bars span:nth-child(1) { animation-delay: 0.3s; }
.eq-bars span:nth-child(2) { animation-delay: 0.35s; }
.eq-bars span:nth-child(3) { animation-delay: 0.15s; }
.eq-bars span:nth-child(4) { animation-delay: 0.5s; }

@keyframes eq {
    0% { height: 2px; }
    50% { height: 10px; }
    100% { height: 5px; }
}

/* 정지 아이콘 */
.pause-icon {
    display: none;
    color: #fff;
    font-size: 0.7rem; /* 18px */
}
/* 음악이 정지된 상태 */
.bgm_btn.paused .eq-bars {
    display: none;
}
.bgm_btn.paused .pause-icon {
    display: block;
}
/* e: header */

.section .tit {
    margin-bottom: 2.37rem;;
    font-family: 'Castoro Titling';
    font-size: 2rem;
    letter-spacing: -0.02rem;
}
.section .disc {
    margin: 0.7rem 0 2.7rem;
    font-size: 1.125rem;
    color: #999; 
}


/* s: section01 */
.section01 {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 900px;
    text-align: center;
}
.section01 .inner {
    padding: 0 0;
}
/* 벚꽃 캔버스 스타일 */
#sakura_canvas {
    z-index: 2; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
}
.section01 .img_box {
    width: 100%;
    height: 100%;
    overflow: hidden;
} 
.section01 .img_box img {
    position: absolute;
    left: 50%;
    top: 0;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
}
.section01 .dimm_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 80%);
    opacity: 1;
    visibility: visible;
    animation: bgdimm 1s ease-out 2.9s forwards;
}
@keyframes  bgdimm {
    100% {opacity: 0; visibility: hidden;}   
}
.section01 .text_box__top {
    position: absolute;
    left: 50%;
    bottom: 93px;
    width: 100%;
    padding: 0 1.5rem;
    color: #fff;
    transform: translateX(-50%);
}
.section01 .text_box {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    padding: 0 1.5rem;
    color: #fff;
    transform: translateX(-50%);
}
.section01 .title {
    /* font-family: 'WindSong';
    font-size: 6.81rem;
    color: #FAED87; */
    opacity: 0.8;
    margin-top: 90px;
    margin-left: -63px;
}

.section01 .tit01 {
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: titdash 0.8s linear forwards;
}
.section01 .tit02 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: titdash 0.4s 0.8s linear forwards;
}
.section01 .tit03 {
    stroke-dasharray: 270;
    stroke-dashoffset: 270;
    animation: titdash 0.4s 1.2s linear forwards;
}
.section01 .tit04 {
    stroke-dasharray: 270;
    stroke-dashoffset: 270;
    animation: titdash 0.4s 1.6s linear forwards;
}
.section01 .tit05 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: titdash 0.4s 2s linear forwards;
}
.section01 .tit06 {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: titdash 0.4s 2.4s linear forwards;
}
.section01 .tit07 {
    stroke-dasharray: 430;
    stroke-dashoffset: 430;
    animation: titdash 0.4s 2.8s linear forwards;
}

@keyframes titdash {
    to {
        stroke-dashoffset: 0;
    }
}

.section01 .desc {
    margin-top: 557px;
    font-family: 'Jeju Myeongjo';
    font-size: 1.3rem;
    font-weight: 100;
}
.section01 .date {
    margin-top: 8px;
    font-family: 'Castoro Titling';
    font-size: 1rem;
    font-weight: 100;
}
/* e: section01 */

/* s: section02 */
.section02 {
    padding: 6.25rem 0 6.25rem;
    background-color: #ffffff;
}
.section02 .icon {
    position: relative;
    width: 40px;
    height: 50px;
    margin: 0 auto 70px;
    text-align: center;
}
.section02 .icon.aos-animate::before {
    content: "";
    display: inline-block;
    width: 0%;
    height: 1px;
    background-color: rgb(160, 181, 117, 1);
    animation: crossw 0.5s linear forwards;
}
.section02 .icon.aos-animate::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -2px;
    display: inline-block;
    width: 1px;
    height: 0%;
    background-color: rgb(160, 181, 117, 1);
    animation: crossh 0.5s 0.3s linear forwards;
}
@keyframes crossw {
    100% {width: 100%;}
}
@keyframes crossh {
    100% {height: 100%;}
}

.section02 .desc {
    font-size: 1.1rem;
    line-height: 1.6;
}
.section02 .name {
    margin-top: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
}
.section02 .img_box {
    width: 100%;
    height: 168px;
    margin: 5.25rem 0 8rem;
    background-image: url('../img/section02.jpg');
    background-attachment: fixed;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 5px;
    overflow: auto;
}
.section02 .calendar {
	max-width: 28rem;
    margin: 0 auto;
    background: #fff;
    /* border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    /* padding: 36px 24px 40px; */
}
.section02 .calendar_date {
    font-family: 'Castoro Titling';
    font-size: 2rem;
    letter-spacing: -0.02rem;
    color: #444;
}
.section02 .calendar_sub-date {
    margin: 2rem 0 0;
    /* font-family: 'Jeju Myeongjo'; */
    font-size: 1.125rem;
    color: #444;
}
.section02 .calendar_sub-date.en {
    margin: 0.7rem 0 2.37rem;
    /* font-family: 'Jeju Myeongjo'; */
    /* font-family: "Playfair Display", serif; */
    /* font-family: 'Castoro Titling'; */
    /* font-family: "Noto Serif Display", serif; */
    font-size: 1.125rem;
    text-transform: none;
    color: #999;
}
/* .section02 .calendar hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 18px 0;
}
*/
.section02 .calendar_table {
    display: block;
    width: 95%;
    margin: 55px auto;
    padding: 45px 0;
    table-layout: fixed;
    border-collapse: collapse;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
}
.section02 .calendar_table .red {
    color: #ff7070;
}
.section02 .calendar_table th {
    padding-bottom: 1rem;
    font-size: 1rem;
    color: #444444;
}
.section02 .calendar_table td {
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    color: #444444;
}
.section02 .calendar_table td span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border-color:#2c4e36;
    transition: all 0.3s ease;
}
.today {
    color: #Fff;
    background-color: rgb(160, 181, 117, 0.8)
}
/* .section02 .calendar_spot {
    margin: 1.5rem 0 2.37rem;
    font-size: 1.5rem;
    color: #242424;
} */
.calendar_dday {
    margin-top: 1.7rem;
    font-size: 1.125rem;
    color: #444;
}
.calendar_dday .calendar_count {
    color: rgb(160, 181, 117, 1);
}
/* e: section02 */


/* s: section04 */
.section04 {
    padding: 6.25rem 0 6.25rem;
    background-color: #fff;
}
.section04 .plan_list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.section04 .plan_list::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background-color: #ccc;
    transform: translateX(-50%);
    transition: height 2s linear;
}
.section04 .plan_list.aos-animate::before {
    height: 100%;
}
.section04 .plan_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 24.375rem;
    width: 100%;
}
.section04 .plan_img {
    width: calc(50% - 1.75rem);
}
.section04 .plan_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: calc(50% - 1.25rem);
}
.section04 .plan_item:nth-child(odd) .plan_box {
    align-items: flex-end;
    /* margin-top: 20px; */
    /* padding-right: 20px; */
}
.section04 .plan_item:nth-child(even) .plan_box {
    align-items: flex-start;
    /* padding-left: 20px; */
}
.section04 .plan_item:nth-child(odd) .plan_icon .dot span {
    left: auto;
    right: -1.47rem;
}
.section04 .plan_item:nth-child(odd) .plan_icon .dot::before {
    left: auto;
    right: -1.47rem;
}
.section04 .plan_item:nth-child(odd) .plan_text{
    text-align: right
}

.section04 .plan_icon .dot span {
    z-index: 1;
    position: absolute;
    left: -1.47rem;
    top: 9px;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgb(221, 230, 204);
    border-radius: 100%;
}
.section04 .plan_icon .dot::before {
    z-index: 0;
    content: "";
    position: absolute;
    left: -1.47rem;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #fff;
}
.section04 .plan_icon .time {
    display: inline-flex;
    height: 1.5rem;
    padding: 0 1.2rem;
    font-family: 'Castoro Titling';
    font-size: 1rem;
    line-height: 26px;
    background-color: rgb(160, 181, 117, 0.7);
    border-radius: 50px;
    color: #fff;
}
.section04 .plan_text {
    text-align: left;
}
.section04 .plan_text .plan_tit {
    margin-bottom: 0.5rem;
    font-family: 'Castoro Titling';
    font-size: 1rem;
    letter-spacing: -0.01rem;
}
.section04 .plan_text .desc {
    font-size: 0.9rem;
    line-height: 1.43;
    color: #444444;
}
/* e: section04 */

/* s: section05 */
.section05 {
    padding: 6.25rem 0 6.25rem;
    background-color: rgb(244 245 241);
}
.section05 .contact_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section05 .contact_list {
    display: flex;
    justify-content: center;
    gap: 3.56rem;
}
.section05 .contact_list.bride {
    padding-bottom: 2.7rem;
    border-bottom: 1px solid #D9D9D9;
}
.section05 .contact_list.parent {
    flex-wrap: wrap;
    gap: 2.5rem 3.56rem;
    padding-top: 2.7rem;
}
.section05 .contact_item {
    width: 8.93rem;
}
.section05 .contact_item .role {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444444;
}
.section05 .contact_item .role.bold {
    font-weight: 500;
}
.section05 .contact_item .tag {
    display: inline-flex;
    height: 1.5rem;
    margin-bottom: 1.2rem;
    padding: 0 1.2rem;
    font-size: 1rem;
    line-height: 26px;
    background-color: rgb(160, 181, 117, 0.7);
    border-radius: 50px;
    color: #fff;
}
.section05 .contact_item .tag.woman {
    background-color:#f4d6e7;
    color: #fff;
}
.section05 .contact_item .name {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: #444444;
}
.section05 .contact_item .name.bold {
    font-weight: 600;
}
.section05 .contact_item .contact_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.section05 .contact_item .contact_icon .fa-phone {
    font-size: 1.4rem;
    color: rgb(44, 78, 54, 0.5);
}
.section05 .contact_item .contact_icon .fa-envelope {
    font-size: 1.4rem;
    color: rgb(44, 78, 54, 0.5);
}
/* e: section05 */

/* s: section06 */
.section06 {
    padding: 6.25rem 0 6.25rem;
    background-color: #ffffff;
}
.section06 .tit {
    margin-bottom: 0;
    font-family: 'Castoro Titling';
}
.section06 .gallery_swiper {
    max-width: 19.5rem;
    width: 100%;
    height: 100%;
}
.section06 .gallery_item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.section06 .gallery_swiper .swiper_btn {
    width: 100%;
    height: 100%;
}
.section06 .gallery_swiper img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.section06_modal {
    z-index: 9999;
    position: fixed;
    left: 50%;
    top: 0;
    display: none;
	max-width: 28rem;
    width: 100%;
    height: 100vh;
    padding: 3rem 0 3.75rem;
	background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
    transform: translateX(-50%);
}
.section06_modal .gallery_modal_swiper {
    width: 100%;
    height: 100%; 
}
.section06_modal .gallery_modal_swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.section06_modal .modal_close_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    font-size: 1.5rem;
    background: transparent;
    opacity: 0.6;
}
.section06_modal .modal_control_box {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    width: 100%;
    transform: translateX(-50%);
}
.section06_modal .modal_control_box .swiper-button-next,
.section06_modal .modal_control_box .swiper-button-prev {
    z-index: 11;
    top: 50%;
    margin-top: 0;
    color: #444444;
    transform: translateY(-50%);
}
.section06_modal .modal_control_box .swiper-button-next svg,
.section06_modal .modal_control_box .swiper-button-prev svg {
    height: 1.3rem;
}
.section06_modal .swiper-pagination {
    top: 50%;
    bottom: auto;
    margin-top: 0;
    transform: translateY(-50%);
}
.section06_modal .swiper-pagination > span {
    font-size: 1em;
}
/* e: section06 */

/* s: section07 */
.section07{
    position: relative;
    padding: 6.25rem 0 6.25rem;
    background-color: rgb(235, 241, 224);
}
/* .section07::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 171px;
    height: 1px;
    background-color: #bcbcbc;
    transform: translateX(-50%);
} */
.section07 .desc {
    font-size: 1.125rem;
    line-height: 1.5;
}
.section07 .location_btn {
    background: none;
}
.section07 .btn--link i {
    margin-left: 5px;
    font-size: 0.8rem;
    color: #8a8a8a;
}
.section07 .btn--copy i {
    margin-left: 5px;
    font-size: 0.8rem;
    color: #8a8a8a;
}
.section07 .disc_sub {
    margin: 0.7rem 0 2.37rem;
    font-size: 1.025rem;
    color: #4A4A4A;
}


.section07 .map {
    width: 100%;
}
#daumRoughmapContainer1773848506641 {
    width: 100%;
    height: auto;
}
#daumRoughmapContainer1773848506641 .cont {
    display: none;
}
.wrap_controllers {
    display: none;
}

.section07 .btn_wrap02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1.5rem;
}
.section07 .btn_wrap02 .location_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 30%;
    padding: 0.7rem 0;
    font-size: 1rem;
    background-color:rgb(255 255 255 / 80%);
    border-radius: 8px;
}
.section07 .btn_wrap02 .location_btn .btn_icon {
    width: 1.2rem;
}
.section07 .btn_wrap02 .location_btn .btn_icon01 {
    width: 1rem;
}
.section07 .info {
    text-align: left;
}
.section07 .info .blue {
    color: #4c9ddf;
}
.section07 .info .bold {
    font-weight: 600;
}
.section07 .info_list {
    display: flex;
    flex-direction: column;
}
.section07 .info_item {
    padding: 2.5rem 0;
}
.section07 .info_item:not(:last-child) {
    border-bottom: 1px solid #cecece;
}

.section07 .info_tit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #92a571;
}
.section07 .info_desc {
    font-size: 1rem;
    line-height: 1.7;
}
.section07 .info_desc strong {
    display: inline-block;
    margin-right: 8px;
}
.section07 .park_list {
    margin-top: 1rem;
}
.section07 .park_list .park_tit {
    display: inline-block;
    width: 4.2rem;
    font-weight: 500;
    color: #222;
}
.section07 .park_list li {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* e: section07 */

/* s: section08 */
.section08 {
    position: relative;
    padding: 9.25rem 0 6.25rem;
    background-color: #fff;
}
.section08::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 5rem;
    width: 3rem;
    height: 1px;
    background: #999;
    transform: translateX(-50%);
}
.section08 .tit {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(44, 78, 54, 0.6);
}
.section08 .present_cont.bride {
    margin-top: 1rem;
}
.section08 .present_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 3.5rem;
    padding: 0 1.2rem;
    font-size: 1rem;
    color: #fff;
    background-color: rgb(188 204 170);
    border-radius: 7px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.22);

}
.section08 .present_btn i {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.section08 .present_btn.on i {
    transform: rotate(180deg);
}
.section08 .present_list {
    display: none;
    width: 100%;
    padding: 1.3rem 1rem;
    background-color: rgb(188 204 170 / 22%);
    border-radius: 7px;
    
}
.section08 .present_item {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    /* justify-content: space-between; */
    width: 100%;
    margin-bottom: 1.3rem;
    padding: 1.7rem 2rem;
    font-size: 1rem;
    color: #242424;
    background-color: #FFFFFF;
    border-radius: 7px;
    box-shadow:3px 3px 5px rgba(0, 0, 0, 0.06)
}
.section08 .present_list .present_item:last-child {
    margin-bottom:  0;
}
.section08 .present_item .present_info {
    width: 100%;
}
.section08 .present_item .present_info > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
}
.section08 .present_item .present_info .present_role {
    font-weight: 600;
}
.section08 .present_item .present_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f2f2f2;
    border-radius: 7px;
}
.section08 .present_item .present_box dl {
    text-align: left;
}
.section08 .present_item .present_box .present_bank {
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: #bbb;
}
.section08 .present_item .present_btn--copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    color: #9aae85;
    background-color: rgb(188 204 170 / 50%);
    border-radius: 7px;
}
/* e: section08 */

/* s: section09*/
.section09 {
    padding: 6.25rem 0 6.25rem;
    background-color: rgb(212 223 191)
}
.section09 .infoSwiper{
    padding: 10px;
    width: calc(100% - 20px);
}
.section09 .infoSwiper .info_item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.22);
    
}
.section09 .infoSwiper .info_item img {
    border-radius: 10px;
}
.section09 .infoSwiper .info_box {
    margin-top: 1rem;
}
.section09 .infoSwiper .info_tit {
    margin-top: 1rem;
    font-weight: 500;
    color: #92a571;
}
.section09 .infoSwiper .info_desc {
    margin-top: 1rem;
    font-size: 0.925rem;
    line-height: 1.6;
    color: #888;
}
.section09 .infoSwiper .info_desc .point {
    position: relative;
    display: inline-block;
}
.section09 .infoSwiper .info_desc .point::before {
    z-index: -1;
    content: "";
    position: absolute;
    left: -0.5%;
    top: 50%;
    width: 101%;
    height: 80%;
    transform: translateY(-50%);
    background-color: rgb(212 223 191 / 60%);
}

/* e: section09 */

/* s: section10 */
.section10 {
    padding: 0 0 6.25rem;
    background-color: #fff;
}
.section10 .inner {
    padding: 0 0;
}
.section10 .thank_desc {
    width: 100%;
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.925rem;
    line-height: 1.7;
}
.section10 .thank_desc i {
    display: inline-block;
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.9rem;
}
/* e: section10 */

/* s: footer */
.footer {
    padding: 3.25rem 1.5rem 6.25rem;
    background-color: #fff;
}
.footer_btn_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.footer .footer_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    font-size: 1rem;
    border-radius: 7px;
}
.footer .footer_btn.btn--link {
    font-weight: 500;
    background-color: rgb(249 213 35 / 63%)
}
.footer .footer_btn.btn--copy {
    color: #fff;
    background-color: #a0b575;
}
.footer .footer_btn.btn--copy i {
    font-size: 1rem;
}
.footer .footer_btn i {
    display: inline-block;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}
/* e: footer */

.main [data-aos=fade-up] {
    transform: translate3d(0, 4.375rem, 0);
}