@charset "utf-8";

/*section1*/
.sec01 {
  width: 100%;
  height: 443px;
  overflow: hidden;
    position: relative;
}

.main-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.img-scale {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 6s all ease;
    transform: scale(1.02);
}

.img-scale.main-bg1 {
    background-image: url('/Mobile/Images/img_main01.jpg');
    background-position: top center;
}

.img-scale.main-bg2 {
    background-image: url('/Mobile/Images/img_main02.jpg');
    background-position: center center;
}

.img-scale.main-bg3 {
    background-image: url('/Mobile/Images/img_main03.jpg');
    background-position: bottom center;
}


.main-slide .swiper-slide-active .img-scale {
    animation: scale 6s ease forwards;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.slide-controller .swiper-pagination {
    font-family: var(--font-num);
    position: relative;
    text-align: left;
    display: flex;
    gap: 0 12px;
    width: 60px;
    align-items: center;
    top: auto;
    bottom: auto;
    justify-content: center;
    font-size: 12px;
}

.main-text {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  z-index: 10;
}

.main-text h3 {
  font-size: 40px;
  opacity: 0;
  font-weight: 500;
  line-height: 1.5em;
  font-size: var(--f18);
}

.main-text h4 {
  font-size: 0.75rem;
  padding-top: 24px;
  opacity: 0;
  font-weight: 300;
  line-height: 1.3em;
}

.main-weather {
  position: absolute;
  bottom: 23px;
  left: 20px;
  color: #fff;
  font-weight: 100;
}

.main-weather h4 {
  font-size: 13px;
  padding-bottom: 5px;
}

.main-weather ul {
  display: flex;
  align-items: center;
}

.main-weather ul li {
  font-size: 25px;
}

.main-weather ul li span {
  font-size: 15px;
}

.main-weather ul li p {
  padding-left: 10px;
}

.fade-in {
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.main-btn-reser {
  width: 170px;
  height: 50px;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.37);
  border-radius: 27px;
  padding: 5px 0;
  transition: 1s background-color cubic-bezier(0.17, 0.97, 0.38, 1);
  margin-top: 50px;
  opacity: 0;
}

.main-btn-reser a {
  display: flex;
  width: 150px;
  margin: auto;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  justify-content: center;
  align-items: center;
}

.main-btn-reser .main-arw {
  background-color: #007862;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 27px;
  transition: 0.3s all ease-in-out
}

.main-btn-reser .main-arw span {
  background: url(/Images/ic_m_arw_w.svg) center center no-repeat;
  background-size: 18px 18px;
  display: inline-block;
  width: 33px;
  height: 33px;
  transition: 0.3s all ease-in-out;
}

.main-btn-reser:hover {
  border: 2px solid #007862;
  background-color: #007862;
}

.main-btn-reser:hover .main-arw {
  background-color: #fff;
}

.main-btn-reser:hover .main-arw span {
  background: url(/Images/ic_m_arw.svg) center center no-repeat;
  background-size: 18px 18px;
}



.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 20px; 
}
.swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    transition: .5s all ease-in-out;
}
.swiper-pagination-bullet-active{
    width: 35px;
    height: 14px;
    border-radius: 10px;
    background-color: #fff;
}


/*250730 섹션추가*/
.section02{ width: 100%;}
.reser-area{
    width: 100%;
    display: flex;
    align-items: center;
    height: 60px;
}
.calendar-month{
    width: 80px;
    margin-left: 16px;
    border-right: 1px solid #cbcbcb;
    padding-right: 5px;
}
.calendar-month select{
    width: 100%;
    height: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: 0;
}
.calendar-days{ 
    width: 100%;
    width: calc(100% - 85px);
}
.calendar-days ul{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
}
.calendar-days ul li{
    width: 45px;
    flex: 0 0 auto;
    text-align: center;
    padding: 6px 0;
    line-height: 1.4em;
    color: #363636;
    font-weight: 600;
}
.calendar-days ul li p{
    font-weight: 400;
}
.calendar-days ul li.sat{
    color: #1075ce;
}
.calendar-days ul li.sun{
    color: #e90505;
}
.calendar-days ul li.deadline{
    background-color: #efefef;
    color: #cbcbcb !important;
}

.btn-main-box{
    width: 94%;
    margin: 25px auto 30px;
}
.btn-main-box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 7px 4%;
    flex-wrap: wrap;
}
.btn-main-box ul li{
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid #007862;
    flex: 1 1 30%;
}
.btn-main-box ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 9px 0;
    color: #007862;
    font-size: 0.88rem;    
}


.popup-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 90%;
  width: 100%;
}

.popup-box img {
  display: block;
  width: 100%;
}

.popup-close {
  display: block;
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: center;
}