@charset "utf-8";

.main {
    width: 100%;
}

.section {
    height: 100vh !important;
}

.section-inner {
    padding-top: 100px;
    width: 100%;
    height: 100%;
}

.section-inner.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1300px;
    margin: 0 auto;
}

.section01 {
    width: 100%;
    position: relative;
    padding-top: 100px;
}

.main-img-wrap {
    width: 100%;
    height: calc(100vh - 200px);
    position: relative;
}

.main-img {
    width: 70%;
    height: calc(100% - 80px);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.main-slider {
    width: 100%;
    height: 100%;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-text {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
}

.main-text h2 {
    position: absolute;
    left: -50px;
    top: -60px;
}

.main-text h3 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--font-en);
}

.main-text p {
    color: #707070;
    font-size: 16px;
    line-height: 26px;
    margin-top: 25px;
}

.main-calendar-wrap {
    width: 100%;
    height: 100px;
    background: #001848;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 60px;
    /*position: absolute;*/
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.weather-area {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px 0;
}

.weather-area h2 {
    font-size: 34px;
    font-weight: 500;
}

.weather-area ul {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.weather-area ul li {
    font-size: 16px;
}

.weather-area img {
    filter: invert(1);
}

.main-calendar {
    position: relative;
    height: 100%;
}

.main-calendar .navigation span {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.main-calendar .navigation .prev {
    background: url("/images/main_cal_prev.svg")no-repeat;
    left: -30px;
}

.main-calendar .navigation .next {
    background: url("/images/main_cal_next.svg")no-repeat;
    right: -30px;
}

.calendar-body {
    display: flex;
    height: 100%;
}

.calendar-body li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
    cursor: pointer;
    width: 60px;
}

.calendar-body li span {
    color: #fff;
    text-transform: uppercase;
}

.calendar-body li span:nth-of-type(1) {
    font-size: 14px;
}

.calendar-body li span:nth-of-type(2) {
    font-size: 20px;
}

.calendar-body li span:nth-of-type(3) {
    font-size: 13px;
}

.calendar-body li.saturday span:not(:last-child) {
    color: #00A3FF;
}

.calendar-body li.sunday span:not(:last-child) {
    color: #E0062D;
}

.calendar-body li.today {
    background: var(--sub-color);
}

.section02 {
    width: 100%;
    padding: 100px 0;
}

.section02 video {
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.section03 {
    display: flex;
    padding: 100px 0;
}

.section03 .title {
    width: 40%;
}

.section03 .title p {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 36px;
    line-height: 52px;
}

.section03 .title a {
    border-radius: 28px;
    border: 1px solid #222433;
    font-size: 18px;
    width: 185px;
    padding: 17px 0;
    display: block;
    text-align: center;
    background: url("/images/icon_room_btn.svg") no-repeat top 23px right 55px;
}

.section03 .list {
    width: 60%;
}

.section03 .list ul {
    width: 780px;
    margin: 0 auto;
}

.section03 .list ul li {
    border-bottom: 1px solid #cbcbcb;
    width: 100%;
    height: 80px;
}

.section03 .list ul li:first-child {
    border-top: 1px solid #cbcbcb;
}

.section03 .list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    width: 100%;
    height: 100%;
}

.section03 .list ul li p {
    font-size: 18px;
}

.section03 .list ul li span {
    font-size: 14px;
    color: #CBCBCB;
    text-transform: uppercase;
}

.section03 .list ul li:hover {
    background: #f4f4f4;
}

.section03 .list ul li:hover p {
    text-decoration: underline;
}

.section03 .list ul li:hover span {
    text-decoration: underline;
    color: #222;
}

.section04 {
    padding: 100px 0;
}

.section04-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.section04-bg {
    width: 100%;
    height: 100%;
}

.section04-bg img {
    width: 100%;
    height: 100%;
}

.section04-inner .text {
    position: absolute;
    left: 240px;
    top: 50%;
    transform: translateY(-50%);
}

.section04-inner .text h3 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--font-en);
}

.section04-inner .text p {
    font-size: 18px;
    line-height: 26px;
    color: #707070;
}

.section04-inner .text a {
    display: block;
    width: 185px;
    padding: 17px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #222433;
    border-radius: 28px;
    margin-top: 72px;
    background: url("/images/icon_room_btn.svg") no-repeat top 23px right 45px rgba(255, 255, 255, 0.5);
}

.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow > .fp-overflow {
    height: 100vh;
}

/* main-popup */
.main-pop-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 105;
}

.main-pop {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    max-height: 750px;
    overflow: auto;
}

.main-pop::-webkit-scrollbar {
    width: 8px;
}

.main-pop::-webkit-scrollbar-thumb {
    height: 20%;
    background: #fff;
}

.main-pop::-webkit-scrollbar-track {
    background: var(--main-color);
}

.main-pop a {
    display: block;
    font-size: 0;
    width: 100%;
    height: 77px;
}

.main-pop a img {
    width: 100%;
    height: 100%;
}

.main-popup-btn {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.main-popup-btn a {
    color: #fff;
    font-size: 14px;
}


@media (max-width: 1200px) {
    .main-pop-wrap {
        width: 90%;
        margin: 0 auto;
    }

    .main-pop {
        width: 100%;
        max-height: 550px;
        gap: 6px 0;
    }

    .fp-responsive .fp-is-overflow.fp-section {
        height: 100vh !important;
    }

    .section-inner {
        padding-top: 0;
    }

    .section-inner.flex {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .section01 {
        width: 100%;
        height: 100vh;
        position: relative;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .main-img-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .main-img {
        height: 236px;
        right: unset;
        border-radius: 15px 0 0 15px;
        pointer-events: auto;
        width: calc(100% - 16px);
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin-top: 30px;
    }

    .main-slider, .main-img img {
        height: 100%;
        object-fit: cover;
    }

    .main-text {
        left: 16px;
        top: calc(50% - 118px - 20px);
        transform: translateY(-100%);
        z-index: 3;
    }

    .main-text h2 {
        position: absolute;
        left: 0;
        top: -29px;
    }

    .main-text h2 img {
        width: 252px;
    }

    .main-text h3 {
        font-size: 24px;
    }

    .main-text p {
        line-height: 24px;
        margin-top: 15px;
    }

    .main-calendar-wrap {
        height: 191px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px 0;
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0;
        /*top: calc(50% + 118px + 20px);*/
        z-index: 3;
    }

    .weather-area {
        padding: 8px 16px;
    }

    .weather-area h2 {
        font-size: 28px;
    }

    .weather-area ul li {
        font-size: 16px;
        margin-top: 0;
    }

    .main-calendar {
        position: relative;
        height: 108px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .main-calendar .navigation {
        display: none;
    }

    .calendar-body {
        display: flex;
        height: 100%;
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .calendar-body li {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 70px;
        height: 100%;
    }

    .calendar-body li span:nth-of-type(1) {
        font-size: 16px;
    }

    .calendar-body li span:nth-of-type(2) {
        font-size: 18px;
    }

    .calendar-body li span:nth-of-type(3) {
        font-size: 16px;
    }

    .section02 {
        position: relative;
        overflow: hidden;
        padding: 67px 0 191px 0;
    }

    .section02 video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }

    .section03 {
        display: flex;
        width: 100%;
        height: 100%;
        padding: 67px 0 191px 0;
    }

    .section03 .section-inner {
        width: 100%;
        height: 100%;
        padding-top: 68px;
    }

    .section03 .title {
        width: 100%;
        margin-bottom: 48px;
        padding: 0 16px;
    }

    .section03 .title p {
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 140%;
    }

    .section03 .title a {
        width: 152px;
        padding: 12px 0;
        background: url("/images/icon_room_btn.svg") no-repeat top 18px right 35px;
    }

    .section03 .list {
        width: 100%;
        background: #fafafa;
    }

    .section03 .list ul {
        width: 100%;
        padding: 0 16px;
    }

    .section03 .list ul li a {
        padding: 0 30px;
    }

    .section03 .list ul li p {
        font-size: 16px;
    }

    .section03 .list ul li:hover {
        background: transparent;
    }

    .section03 .list ul li:hover p {
        text-decoration: unset;
    }

    .section03 .list ul li:hover span {
        text-decoration: unset;
        color: transparent;
    }

    .section04 {
        padding: 0 0 191px 0;
    }

    .section04-bg img {
        object-fit: cover;
    }

    .section04-inner .text {
        left: 16px;
        top: 100px;
        transform: unset;
    }

    .section04-inner .text h3 {
        font-size: 24px;
        line-height: 140%;
        margin-bottom: 10px;
    }

    .section04-inner .text p {
        font-size: 16px;
        line-height: 24px;
    }

    .section04-inner .text a {
        width: 152px;
        padding: 12px 0;
        margin-top: 38px;
        background: url("/images/icon_room_btn.svg") no-repeat top 18px right 25px rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 768px) and (max-height: 700px) {
    .main-img {
        height: 180px;
    }
}