
:root{
  overflow-x: hidden;
  --color-sky_blue_dark:#48A0E8;
  --color-sky_blue: #5FBFEF;
  --color-light_blue: #EDF4FA;
  --color-back_dark : #424346;
}

body{
    background-color: #fff;
    overflow-x:hidden;
}
*{
    	font-family: 'Pretendard';
}
.top-menu{
  --hader_position: 140px;
    width:100%;
    height:var(--hader_position);
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:10;
    /* mix-blend-mode: difference; */
    transition:all 0.5s ease;
}

.top-menu.top_page{
  background-color: #fff;
}

.top_page .menu-container .logo img{
  mix-blend-mode: difference;
}
.top_page .menu-container .menu a{
  color:#000;
}
.top-menu.up{
  top: calc(var(--hader_position) * -1);
}

.top-menu .menu-container{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 55px;
    max-width:1600px;
    margin:auto;
    height:100%;
}

.menu-container .logo{
    max-width: 210px;
}

.menu-container .logo img{
    width: 100%;
    height: auto;
}
.menu-container .menu{
    display:flex;
    aligin-items: center;
    gap:110px;
}
.menu-container .menu a{
    font-size:22px;
    color:#fff;
}


/* floating menu */

.floating_menu{
  display:block;
  position:fixed;
  bottom:5vh;
  right:2vw;
  z-index:10;
  max-width:100px;
  background-color:#fff;
  border:1px solid #eee;
}

.floating_menu .bottom_btn{
  background-color:#09153D;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
}
.floating_menu .bottom_btn svg{
  stroke:white;
}

.floating_menu .float_item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

}

.floating_menu .float_item .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  padding:10px 20px;
  text-align:center;
  font-size:14px;
  color:#7e7e7e;
  white-space: nowrap;
  width:100%;
  border-bottom:1px solid #eee;
  min-height:100px;
}
.floating_menu .float_item .btn img{
  width:44px;
  height:44px;
  object-fit:contain;
}

/* section 공통 */

.sec_tit {
  text-align:center;
  margin-top:140px;
  margin-bottom:80px;
}
.sec_tit h2{
    font-weight:300;
  font-size:40px;
  margin-bottom:38px;
}
.sec_tit h2 strong{
  font-weight:700;
}

.sec_tit p {
  font-size:20px;
  font-weight: 300;
}



/* count_sec end */

footer{
  background-color:var(--color-back_dark);
  color:#fff;
  padding:106px 0;
}

footer .flex_between{
  display:flex;
  justify-content: space-between;
  align-items:center;
  max-width:1400px;
  width:100%;
  margin:auto;
}


footer .left_footer .logo{
  max-width:200px;
  margin-bottom:36px;
}

footer .left_footer .logo img{
  width:100%;
}

footer .left_footer .footer_text{
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 28px;
  /* line-height:31px; */
}
footer .left_footer .footer_text span{
  display:block;
  margin-bottom:16px;
}
footer .left_footer .footer_text span:last-child{
  margin-bottom:0;
}
footer .right_footer {
  text
}

footer .right_footer .tel{
  color:#9FDFFF;
  font-size:42px;
  font-weight:600;
}


footer .right_footer table{
  margin-top:48px;
}
footer .right_footer th{
  font-weight:300;
  font-size:18px;
  display:flex;
  align-items:center;
  margin-bottom:20px;
  width:103px;
}
footer .right_footer td{
  font-weight:400;
  font-size:18px;
}


/* 모달 스타일 */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.calendar-modal .modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.calendar-modal .modal-header {
    background: linear-gradient(135deg, #4a89dc, #5a6fb8);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-modal .modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.calendar-modal .close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.calendar-modal .close:hover {
    opacity: 0.7;
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-modal .modal-body {
    padding: 0;
    background: white;
}

.calendar-modal iframe {
    border: none;
    width: 100%;
    height: 600px;
    display: block;
}

@media (max-width: 768px) {
    .calendar-modal .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .calendar-modal .modal-header {
        padding: 15px 20px;
    }
    
    .calendar-modal .modal-header h2 {
        font-size: 20px;
    }
    
    .calendar-modal iframe {
        height: 500px;
    }
    
    /* 플로팅 메뉴 모바일 */
    .floating_menu {
        bottom:0;
        right:0;
        max-width:100%;
        border:none;
        width:100%;
        box-shadow:0 0 4px rgba(0,0,0,0.1)
    }
    
    .floating_menu .bottom_btn{
        position:absolute;
        bottom: calc(100% + 20px);
        width:44px;
        height:44px;
        border-radius:50%;
        background-color:#fff;
        right:16px;
        box-shadow:0 0 4px rgba(0,0,0,0.1)
    }
    
    .floating_menu .bottom_btn svg{
        stroke:black;
    }
    
    .floating_menu .float_item {
        flex-direction: row;
        width:100%;
    }
    
    .floating_menu .float_item .btn{
        min-height:74px;
        border-bottom: none;
        font-size:10px;
        width:20%;
    }
    
    .floating_menu .float_item .btn img{
        width:32px;
        height:32px;
    }

    #calendarModal.calendar-modal .close {
      right:0;
    }
}