@charset="UTF-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Gowun+Batang:wght@400;700&family=Noto+Sans+KR:wght@400;700&family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-style: normal;
    white-space: normal;
    word-break: keep-all;
    vertical-align: top;
    letter-spacing: -0.025em;
    /*
font-family: 'EB Garamond', serif;
font-family: 'Gowun Batang', serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: "Bad Script", cursive;
*/
}
::-moz-selection {
    background: #ADCCC4;
    color: #fff;
}

::selection {
    background: #ADCCC4;
    color: #fff;
}
a{
    color: inherit !important;
}
img {
    -webkit-touch-callout: none !important;
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: -moz-none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

button {
    outline: none;
    cursor: pointer;
    border: none;
    background: none;
    vertical-align: top;
    display: inline-block;
    font-family: 'Noto Sans KR', sans-serif;
}

.wrap {
    display: block;
    width: 100%;
    min-width: 280px;
    overflow: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
.header {
    display: block;
    width: 100%;
    min-width: 280px;
    height: 60px;
    background: rgba(255, 255, 255, .9);
    position: fixed;
    z-index: 10;
    top: -100px;
    left: 0;
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header.active {
    top: -1px;

}

.lnbWrap {
    width: 100%;
}

.logoImg {
    width: 40px;
    height: 60px;
    background: url(../img/logo.png) center no-repeat;
    background-size: 30px;
    display: inline-block;
    margin-left: 10px
}

.logoText {
    line-height: 60px;
    display: inline-block;
    font-family: 'Gowun Batang', serif;
    font-size: 16px;
    color: #222;
}

.lnb {
    width: 60px;
    height: 60px;
    background: url(../img/iconMenu.png)center no-repeat;
    background-size: 24px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}
.menu a {
    display: none;
}
.menu_wrap ul li a{
    color: #fff;
    height: 40px;
    line-height: 40px;
    background: rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    width: 100%;
    text-align: left;
    padding: 0 15px;
    margin-top: -1px;
    font-family: 'Gowun Batang', serif;
    font-weight: 400;
    color: rgba(22, 59, 59, 1);
    font-size: 16px;
}
.menuSubTitle{
    line-height: 40px;
    color: rgba(22, 59, 59, 0.3);
    font-size: 14px;
    font-family: "Bad Script", cursive;
    display: inline-block;
    margin-left: 10px;
    
}

.burger_icon {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 40;
    padding: 8px 0;
    top: 20px;
    right: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    margin: 0;
}

.burger_icon .burger_sticks {
    background: #163B3B;
    display: block;
    height: 2px;
    position: relative;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
    width: 26px;
}



.burger_icon .burger_sticks:before,
.burger_icon .burger_sticks:after {
    background: #163B3B;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 100%;
}

.burger_icon .burger_sticks:before {
    top: 8px;
}

.burger_icon .burger_sticks:after {
    top: -8px;
}

.burger_check {
    display: none;
}

.burger_check:checked ~ .menu {
    max-height: 160px;

}

.burger_check:checked ~ .menu_wrap {
    height: 160px;
}

.burger_check:checked ~ .menu a {
    display: block;
}

.burger_check:checked ~ .burger_icon .burger_sticks {
    background: transparent;
}

.burger_check:checked ~ .burger_icon .burger_sticks:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.burger_check:checked ~ .burger_icon .burger_sticks:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger_check:checked ~ .burger_icon:not(.steps) .burger_sticks:before,
.burger_check:checked ~ .burger_icon:not(.steps) .burger_sticks:after {
    top: 0;

}

.mainImgWrap {
    width: 100%;
    min-width: 280px;
    overflow: hidden;
    text-align: center;
    position: relative;
    background: #EDF0F0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.mainImgborder {
    width: 100%;
    height: 3px;
    background: #163B3B;
    position: absolute;
    top: 0;
    left: 0;
}

.mainImgTop {

    background: url(../img/mainRoundTop.png)top no-repeat;
    min-width: 360px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.mainImg {
    width: 100%;
    max-width: 540px;
    display: inline-block;
    height: 700px;
    background: url(../img/mainImg.jpg) bottom no-repeat;
    background-size: cover;

}

.mainText {
    width: 100%;
    max-width: 540px;
    min-width: 450px;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
}

.mainThree {
    width: 30%;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
}
.mainThree.left{
    padding-left: 0;
}
.mainThree.right{
    padding-right: 0;
}
.mainTwo {
    width: 20%;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
}

.mainBorder {
    width: 1px;
    height: 70px;
    background: rgba(22, 59, 59, 0.2);
    display: inline-block;
}

.mainKo {
    font-size: 24px;
    font-family: 'Gowun Batang', serif;
    font-weight: 400;
    color: rgba(22, 59, 59, 1);
    letter-spacing: 16px;
    text-align: center;
    width: 100%;
    margin-left: 6px;
    margin-top: 10px;
    line-height: 30px;
}

.mainEn {
    font-size: 10px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: rgba(22, 59, 59, 0.5);
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
    line-height: 20px;

}

.mainMon {
    font-size: 14px;
    line-height: 20px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: rgba(22, 59, 59, 1);
    text-align: center;
    letter-spacing: 10px;
    width: 100%;
    margin-left: 6px;
}

.mainDate {
    line-height: 50px;
    font-size: 60px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: rgba(22, 59, 59, 1);
    text-align: center;
    width: 100%;
}

.mainBottom {
    background: url(../img/mainRound.png)bottom no-repeat;
    min-width: 360px;
    height: 60px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%);
    z-index: 0;
}

.contents1 {
    width: 100%;
    min-width: 280px;
    padding: 0 20px;
    background: linear-gradient(#F0F4F3, #fff);
    padding-bottom: 30px;
    padding-top: 10px;
    text-align: center;
}

.subTitle {
    max-width: 500px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: rgba(22, 59, 59, 0.3);
    font-size: 14px;
    font-family: "Bad Script", cursive;
}

.title {
    max-width: 500px;
    display: inline-block;
    font-family: 'Gowun Batang', serif;
    font-size: 20px;
    color: #163B3B;
    text-align: center;
    width: 100%;
    margin-top: 4px;

}

.con1Img {
    margin-top: 10px;
    width: 100%;
    height: 100px;
    background: url(../img/flower3.png)center no-repeat;
    background-size: contain;
}

.contents2 {
    width: 100%;
    min-width: 280px;
    padding: 0 20px;
    background: #fff;
    padding-bottom: 40px;
    display: inline-block;
    text-align: center;
}

.contents2 img {
    max-width: 500px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 10px rgb(0 0 0 / 20%);
    box-shadow: 3px 3px 10px rgb(0 0 0 / 20%);
    margin-bottom: 40px;
}

.textSerif {
    width: 100%;
    text-align: center;
    font-family: 'Gowun Batang', serif;
    font-size: 16px;
    color: #163B3B;
}

.con2Text {
    max-width: 400px;
    display: inline-block;
    color: #222;
}

.borderWrap {
    max-width: 500px;
    display: inline-block;
    width: 100%;
    height: 10px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.borderDash {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: dashed 1px rgba(22, 59, 59, 0.3);

}

.borderPoint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: url(../img/bgThx.png)#fff center no-repeat;
    background-size: contain;

}

.textSan {
    line-height: 34px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    font-family: 'Noto Sans KR', sans-serif;
}

.textSanBold {
    line-height: 34px;
    display: inline-block;
    font-size: 16px;
    color: #222;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
}

.con2Img {
    width: 40px;
    height: 50px;
    background: url(../img/flower1.png)center no-repeat;
    background-size: contain;
    display: inline-block;
}

.contents3 {
    width: 100%;min-width: 280px;
    padding: 0 20px;
    background: #F0F4F3;
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
}

.calendarWrap {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 13px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 13px rgb(0 0 0 / 10%);
    padding: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
    max-width: 500px;
    display: inline-block;
}

.calendarTitle {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    font-size: 40px;
    color: #163B3B;
    line-height: 40px;

}

.calendarSubtitle {
    color:  rgba(22, 59, 59, 0.3);
    font-size: 14px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    margin-bottom: 10px;
}

.calendar table {
    width: 100%;
    border-collapse: collapse;
}

.calendar tr:first-child {
    border-bottom: solid 1px #163B3B;
}

.calendar th {
    width: 14.2%;
    line-height: 30px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: #A4AFB1;
    font-size: 12px;
}

.calendar td {
    width: 14.2%;
    line-height: 30px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: #A4AFB1;
    font-size: 16px;
}

.calendarPoint {
    display: inline-block;
    background: #163B3B;
    font-family: 'EB Garamond', serif;
    border-radius: 50%;
    width: 30px;
    color: #fff;
    font-weight: 700;
}

.con3bold {
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 20px;
}

.con3Img {
    width: 30px;
    height: 24px;
    background: url(../img/flower4.png)center no-repeat;
    background-size: contain;
    display: inline-block;
}

.contents4 {
    width: 100%;
    min-width: 280px;
    min-height: 240px;
    padding: 45px 20px;
    background: url(../img/imgTimer.jpg)center no-repeat;
    background-size: cover;
}

.con4Text {
    width: 100%;
    text-align: center;
    font-family: 'Gowun Batang', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.counterWrap {
    margin: 10px 0 4px 0;
    text-align: center;
}

.counter {
    padding: 0 2px;
    text-align: center;
    display: inline-block;
}

.counterBox {
    min-width: 44px;
    height: 44px;
    line-height: 34px;
    font-size: 30px;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    padding: 5px;
}

.conterName {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    margin-top: 4px;
}

.contents5 {
    width: 100%;
    min-width: 280px;
    padding: 40px 20px;
    background: linear-gradient(#F0F4F3, #fff);
    text-align: center;
}

.moreText {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #163B3B;
    font-family: 'Noto Sans KR', sans-serif;
}

.iconMore {
    width: 100%;
    height: 24px;
    background: url(../img/iconMore.png)center no-repeat;
    background-size: contain;
    display: inline-block;
    margin-top: 4px;
}

.gallayWrap {
    width: 100%;
    max-width: 540px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
}

.gallay {
    font-size: 0;
    width: 100%;
    max-width: 540px;
}

.imgWrap {
    width: 33%;
    padding: 2px;
    display: inline-block;
    text-align: left;
    
}

.gallayWrap .img {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 6px rgb(0 0 0 / 15%);
    box-shadow: 0px 0px6px rgb(0 0 0 / 15%);
    border-radius: 5px;
    transition: all ease-in-out 0.3s;
}

.imgHide {
    display: none;
    text-align: left;
}

.btnImg {
    
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 5px;
    overflow: hidden;
}
.btnGallary{
    width: 100%;
    height: 100%;
    display: inline-block;
    transition: all ease-in-out 0.3s;
}
.btnGallary:hover{
     transform: scale(1.1);
}
.gallayWrap .img:hover {
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    
}
.btnImg1{
   background: url(../img/gallary/gallary01.jpg) top no-repeat;
    background-size: cover;
}
.btnImg2{
    background: url(../img/gallary/gallary02.jpg) center no-repeat;
    background-size: cover;
}
.btnImg3{
    background: url(../img/gallary/gallary03.jpg) center no-repeat;
    background-size: cover;
}
.btnImg4{
    background: url(../img/gallary/gallary04.jpg) right no-repeat;
    background-size: cover;
}
.btnImg5{
    background: url(../img/gallary/gallary05.jpg) center no-repeat;
    background-size: cover;
}
.btnImg6{
    background:url(../img/gallary/gallary06.jpg) bottom no-repeat;
    background-size: cover;
}
.btnImg7{
    background:url(../img/gallary/gallary07.jpg) bottom no-repeat;
    background-size: cover;
}
.btnImg8{
    background: url(../img/gallary/gallary08.jpg) bottom no-repeat;
    background-size: cover;
}
.btnImg9{
    background: url(../img/gallary/gallary09.jpg) center no-repeat;
    background-size: cover;
}
.btnImg10{
    background: url(../img/gallary/gallary10.jpg) center no-repeat;
    background-size: cover;
}
.btnImg11{
    background: url(../img/gallary/gallary11.jpg) center no-repeat;
    background-size: cover;
}
.btnImg12{
    background: url(../img/gallary/gallary12.jpg) center no-repeat;
    background-size: cover;
}
.btnImg13{
    background: url(../img/gallary/gallary13.jpg) center no-repeat;
    background-size: cover;
}
.btnImg14{
    background: url(../img/gallary/gallary14.jpg) center no-repeat;
    background-size: cover;
}
.btnImg15{
    background:url(../img/gallary/gallary15.jpg) center no-repeat;
    background-size: cover;
}
.btnImg16{
    background: url(../img/gallary/gallary16.jpg) center no-repeat;
    background-size: cover;
}
.btnImg17{
    background: url(../img/gallary/gallary17.jpg) top no-repeat;
    background-size: cover;
}
.btnImg18{
    background:url(../img/gallary/gallary18.jpg) top no-repeat;
    background-size: cover;
}
.btnImg19{
    background: url(../img/gallary/gallary19.jpg) center no-repeat;
    background-size: cover;
}

.btnImg20{
    background:url(../img/gallary/gallary20.jpg) top no-repeat;
    background-size: cover;
}

.btnImg21{
    background: url(../img/gallary/gallary21.jpg) top no-repeat;
    background-size: cover;
}

.btnImg22{
    background:url(../img/gallary/gallary22.jpg) center no-repeat;
    background-size: cover;
}

.btnImg23{
    background:url(../img/gallary/gallary23.jpg) center no-repeat;
    background-size: cover;
}

.btnImg24{
    background:url(../img/gallary/gallary24.jpg) center no-repeat;
    background-size: cover;
}

.btnImg25{
    background:url(../img/gallary/gallary25.jpg) top no-repeat;
    background-size: cover;
}

.btnImg26{
    background: url(../img/gallary/gallary26.jpg) top no-repeat;
    background-size: cover;
}

.btnImg27{
    background:url(../img/gallary/gallary27.jpg) top no-repeat;
    background-size: cover;
}

.btnImg28{
    background: url(../img/gallary/gallary28.jpg) top no-repeat;
    background-size: cover;
}

.btnImg29{
    background: url(../img/gallary/gallary29.jpg) top no-repeat;
    background-size: cover;
}

.btnImg30{
    background: url(../img/gallary/gallary30.jpg) center no-repeat;
    background-size: cover;
}
.popupWrap{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: -100vh;;
    left: 0;
    z-index: 100;
    display: none;
    transition: ease-in-out all 0.3s;
}
.popupBg{
    width: 100%;
    height: 100%;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    background: rgba(0,0,0,0.5)
    
}
.popupClose{
    width: 30px;
    height: 30px;
    background: url(../img/iconClose.png)center no-repeat;
    position: absolute;
    background-size: 30px;
    top: 10px;
    right: 10px;
    z-index: 900;
}
.popupContent{
    padding: 50px 10px;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
          display: flex !important;
      }
.swiper-pagination-fraction{
    color: #fff !important;
}

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.swiper-button-next, .swiper-button-prev{
    color: #fff!important;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    color: #fff;
     text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    bottom: 10px!important;
    right: 5px!important;
    top: auto;
}
.slideImg{
    width: 100%;
    height: 100%;
    max-width: 540px;
}
.slide1{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary01.jpg) center no-repeat;
    background-size: contain;
}
.slide2{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary02.jpg) center no-repeat;
    background-size: contain;
}
.slide3{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary03.jpg) center no-repeat;
    background-size: contain;
}
.slide4{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary04.jpg) center no-repeat;
    background-size: contain;
}
.slide5{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary05.jpg) center no-repeat;
    background-size: contain;
}
.slide6{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary06.jpg) center no-repeat;
    background-size: contain;
}
.slide7{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary07.jpg) center no-repeat;
    background-size: contain;
}
.slide8{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary08.jpg) center no-repeat;
    background-size: contain;
}
.slide9{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary09.jpg) center no-repeat;
    background-size: contain;
}
.slide10{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary10.jpg) center no-repeat;
    background-size: contain;
}
.slide11{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary11.jpg) center no-repeat;
    background-size: contain;
}
.slide12{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary12.jpg) center no-repeat;
    background-size: contain;
}
.slide13{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary13.jpg) center no-repeat;
    background-size: contain;
}
.slide14{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary14.jpg) center no-repeat;
    background-size: contain;
}
.slide15{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary15.jpg) center no-repeat;
    background-size: contain;
}
.slide16{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary16.jpg) center no-repeat;
    background-size: contain;
}
.slide17{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary17.jpg) center no-repeat;
    background-size: contain;
}
.slide18{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary18.jpg) center no-repeat;
    background-size: contain;
}
.slide19{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary19.jpg) center no-repeat;
    background-size: contain;
}
.slide20{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary20.jpg) center no-repeat;
    background-size: contain;
}
.slide21{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary21.jpg) center no-repeat;
    background-size: contain;
}
.slide22{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary22.jpg) center no-repeat;
    background-size: contain;
}
.slide23{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary23.jpg) center no-repeat;
    background-size: contain;
}
.slide24{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary24.jpg) center no-repeat;
    background-size: contain;
}
.slide25{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary25.jpg) center no-repeat;
    background-size: contain;
}
.slide26{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary26.jpg) center no-repeat;
    background-size: contain;
}
.slide27{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary27.jpg) center no-repeat;
    background-size: contain;
}
.slide28{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary28.jpg) center no-repeat;
    background-size: contain;
}
.slide29{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary29.jpg) center no-repeat;
    background-size: contain;
}
.slide30{
    width: 100vw;
    height: 90vh;
    background: url(../img/gallary/gallary30.jpg) center no-repeat;
    background-size: contain;
}

.contents6 {
    width: 100%;
    min-width: 280px;
    padding: 40px 20px;
    background: #ECEFEF;
    text-align: center;
}

.tabWrap {
    width: 100%;
    display: inline-block;
    max-width: 500px;
}

.tabList {
    margin-top: 20px;
    font-size: 0;
}

.btnTab {
    width: 33%;
    display: inline-block;
    font-size: 16px;
    color: #93A8A3;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    border-bottom: solid 2px #C9D8D4;
    line-height: 40px;
}

.btnTab.selected {
    color: #163B3B;
    font-weight: 700;
    border-bottom: solid 2px #163B3B;
}

.btnTab.selected .iconSelected {
    width: 16px;
    height: 40px;
    background: url(../img/iconSelected.png)center no-repeat;
    background-size: contain;
    display: inline-block;
    margin-right: 4px;
}

.tabBox {
    width: 100%;
    height: 840px;
    position: absolute;
    top: 0px;
    left: 0;
}

.tabCon {
    width: 100%;
    height: 290px;
}

.tabImg1 {
    width: 100%;
    height: 200px;
    background: url(../img/imgTab1.jpg)center no-repeat;
    background-size: cover;
}

.tabImg2 {
    width: 100%;
    height: 200px;
    background: url(../img/imgTab2.jpg)center no-repeat;
    background-size: cover;
}

.tabImg3 {
    width: 100%;
    height: 200px;
    background: url(../img/imgTab3.jpg)center no-repeat;
    background-size: cover;
}

.tabText {
    font-size: 14px;
    color: #222;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    margin-top: 10px;
}

.tabBoxWrap {
    width: 100%;
    height: 290px;
    overflow: hidden;
    position: relative;
}

.contents7 {
    width: 100%;
    min-width: 280px;
    padding: 40px 10px;
    background: #fff;
    text-align: center;
}

.callWrap {
    width: 100%;
    max-width: 500px;
    display: inline-block;
    font-size: 0;
    margin-top: 20px;
}

.callLeft,
.callRight {
    width: 50%;
    display: inline-block;
    padding: 0 20px;
}

.callLeft1,
.callRight1 {
    width: 50%;
    display: inline-block;
    padding: 0 10px;
}

.callSubtitle {
    max-width: 500px;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: rgba(22, 59, 59, 0.3);
    font-size: 14px;
    font-family: "Bad Script", cursive;
    margin-top: 10px;
}

.callTitle {
    max-width: 500px;
    display: inline-block;
    font-family: 'Gowun Batang', serif;
    font-size: 18px;
    color: #222;
    text-align: center;
    width: 100%;
}

.btnCall {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    margin-top: 10px;
}

.btnTitle {
    line-height: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: inline-block;
}

.iconCall {
    display: inline-block;
    margin-right: 4px;
    width: 20px;
    height: 50px;
    background-size: contain;
    background: url(../img/iconTel.png) center no-repeat;
}

.btnCall.groom {
    background: #A4BBC9;
}

.btnCall.bride {
    background: #BFA8A8;
}

.callImg {
    padding: 10px;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    position: relative;
    overflow: hidden;

}

.imgGroom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/imgCall1.jpg)center no-repeat;
    background-size: cover;
}

.imgBride {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/imgCall2.jpg)center no-repeat;
    background-size: cover;
}

.callImgWrap {
    position: relative;
}

.callFlower {
    position: absolute;
    width: 30px;
    height: 100%;
    background: url(../img/flower8.png)center no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contents8 {
    width: 100%;
    min-width: 280px;
    padding: 40px 20px;
    background: linear-gradient(#F0F4F3, #fff);
    text-align: center;
}

.accountGroom {
    width: 100%;
    max-width: 500px;
    display: inline-block;
    font-size: 0;
    background: #F5FBFF;
    border: solid 1px #A4BBC9;
    margin-top: 30px;
}

.accountBride {
    width: 100%;
    max-width: 500px;
    display: inline-block;
    font-size: 0;
    background: #FFF5F5;
    border: solid 1px #c69e9e;
    margin-top: 30px;
}

.accountGroom .btnAccount {
    background: #A4BBC9;
    width: 100%;
    line-height: 50px;
    color: #fff;
    text-align: left;
    padding: 0 20px;
    position: relative;

}

.accountBride .btnAccount {
    background: #c69e9e;
    width: 100%;
    line-height: 50px;
    color: #fff;
    text-align: left;
    padding: 0 20px;
    position: relative;
}

.accountGroom .iconAccount {
    width: 24px;
    height: 50px;
    display: inline-block;
    background: url(../img/flower7.png)center no-repeat;
    background-size: contain;
}

.accountBride .iconAccount {
    width: 24px;
    height: 50px;
    display: inline-block;
    background: url(../img/flower6.png)center no-repeat;
    background-size: contain;
}

.titleAccount {
    line-height: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

.iconArrow {
    width: 14px;
    height: 45px;
    background: url(../img/iconDown.png) center no-repeat;
    background-size: 14px;
    position: absolute;
    top: 0;
    right: 20px;
    transform: rotate(-180deg);
}

.accountGroom .accountWrap {
    padding: 20px 20px 0 20px;
    border-top: dashed 1px #A4BBC9;
    margin-top: -1px;
}

.accountBride .accountWrap {
    padding: 20px 20px 0 20px;
    border-top: dashed 1px #c69e9e;
    margin-top: -1px;

}

.textAccount {
    width: 70%;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    text-align: left;
    line-height: 24px;
    display: inline-block;
}

.textName {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #222;
    text-align: right;
    width: 30%;
    display: inline-block;
}

.textName small {
    font-size: 10px;
}

.accountBox {
    padding: 15px;
}

.btnWrap {
    width: 50%;
    padding: 5px;
    display: inline-block;

}

.accountGroom .btnCopy {
    background: #fff;
    width: 100%;
    border: solid 1px #A4BBC9;
    border-radius: 5px;
}

.accountBride .btnCopy {
    background: #fff;
    width: 100%;
    border: solid 1px #c69e9e;
    border-radius: 5px;
}

.btnText {
    line-height: 45px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    display: inline-block;
}

.iconKakao {
    width: 24px;
    height: 45px;
    background: url(../img/iconKaKao.png) center no-repeat;
    background-size: 16px;
    display: inline-block;
}

.iconCopy {
    width: 24px;
    height: 45px;
    background: url(../img/iconCopy.png) center no-repeat;
    background-size: 16px;
    display: inline-block;
}

.contents9 {
    width: 100%;
    min-width: 280px;
    padding: 40px 20px 30px 20px;
    background: #F0F4F3;
    text-align: center;
}

.mapWrap {
    min-width: 280px;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.contents10 {
    width: 100%;
    min-width: 280px;
    margin: 0 auto;
    background: #F0F4F3;
    text-align: center;
    padding: 20px;
}

.addressWrap {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    text-align: left;
    line-height: 28px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: inline-block;
}

.btnNavWrap {
    width: 100%;
    font-size: 0;
    margin-top: 20px;
}

.boxNav {
    width: 33%;
    display: inline-block;
    text-align: center;
    padding: 5px;

}

.titleNav {
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    display: inline-block;
    line-height: 45px;

}

.btnNav {
    width: 100%;
    border-radius: 5px;
    background: #fff;
    display: inline-block;
    border: solid 1px #ADCCC4;
}

.iconkakaoNav {
    height: 45px;
    display: inline-block;
    width: 24px;
    background: url(../img/iconKakaoNav.png)center no-repeat;
    background-size: contain;
    margin-right: 4px;
}

.iconTNav {
    height: 45px;
    display: inline-block;
    width: 24px;
    background: url(../img/iconT.png)center no-repeat;
    background-size: contain;
    margin-right: 4px;
}

.iconNaverNav {
    height: 45px;
    display: inline-block;
    width: 24px;
    background: url(../img/iconNaver.png)center no-repeat;
    background-size: contain;
    margin-right: 4px;
}

.contents11 {
    width: 100%;
    min-width: 280px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    padding: 20px;
}

.informationWrap {
    width: 100%;
    max-width: 500px;
    display: inline-block;
    text-align: left;
    padding: 20px 0;
    border-bottom: dashed 1px #a7b8b4;

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #777;
    text-align: left;
    line-height: 28px;
    margin: 0 auto;
    display: inline-block;
}
.informationWrap span{
    font-weight: 700;
    font-size: 16px;
}
.informationWrap b {
    color: #222;
}
.iconFlower{
  width: 46px;
    height: 34px;
    background: url(../img/flower2.png)center no-repeat;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 10px;
}
.contents12{
    background:#171717;
    min-width: 280px;
    width: 100%;
    text-align: center;
    
}
.contents12 .subTitle, .contents12 .title{
    color: #fff;
    width: 100%;
}
.contents12 .title{
    font-size: 16px;
}
.imgCon12{
    width: 100%;
    padding: 80px 20px;
    max-width: 700px;
    display: inline-block;
    background: url(../img/imgCon12.jpg)center no-repeat;
    background-size: 540px;
}

.footerWrap{
    background: #163B3B;
    padding: 20px;
    width: 100%;
    margin-top: 0px;
}
.footer{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color:rgba(255,255,255,.5);
    line-height: 20px;
}
.hideme {
    opacity: 0;
}

.hidemeActive {
    opacity: 0;
}

@media all and (max-width:800px) {
.contents4 {
    background-size: 800px;
}
}
@media all and (max-width:450px) {
    .mainTwo{
        padding: 0 10px;
    }
    .mainThree.right{
        padding-left:4px;
    }
     .mainThree.left{
        padding-right: 4px;
    }
}
@media all and (max-width:413px) {
    .mainImg{
    height: 600px;
}
    .mainText{
        top: 100px;
    }
    .boxNav{
        width: 100%;
        padding: 5px 0;
    }
}
@media all and (max-width:350px) {
    .tabImg1,.tabImg2,.tabImg3{
        height: 160px;
    }
    .mainDate{
        font-size: 40px;
        line-height: 40px;
    }
    .mainMon{
        font-size: 10px;
        line-height: 10px;
    }
    .mainTwo{
        padding: 0;
        width: 13%;
    }
    .mainKo{
        font-size: 18px;
        line-height: 50px;
        margin-top: 0;
        margin-left: 0;
    }
   
    .mainThree{
        width: 20%
    }
    .mainEn{
        display: none;
    }
    .mainBorder{
        height: 50px;
    }
}
@media all and (max-width:345px) {
    .btnWrap{
        width: 100%;
         padding: 5px 0;
    }
    .textAccount{
        width: 100%;
    }
    .textName{
        width: 100%;
    }
}